home *** CD-ROM | disk | FTP | other *** search
/ Loadstar 27 / 027.d81 / t.hints & tips < prev    next >
Text File  |  2022-08-26  |  3KB  |  171 lines

  1.  
  2.  
  3. =========== Hints and Tips ===========
  4.  
  5. From:  Cutler
  6.  
  7. Dear Loadstar:
  8.  
  9.   Please share some of these helpful
  10. programming tips with your readers.
  11.  
  12. ***********************************
  13.  
  14. C-64 POKE STATEMENTS.
  15.  
  16. (1) FOR A COLD START -type: SYS 64738
  17.  
  18. (2) TO DISABLE STOP -type:
  19.     POKE 788,52:POKE 808,239
  20.  
  21. (3) TO ENABLE STOP  -type:
  22.     POKE 788,49:POKE 808,237
  23.  
  24. (4) TO DISABLE RESTORE,LIST AND STOP
  25.     type: POKE 808,237
  26.  
  27. (5) TO DISABLE RESTORE -type:
  28.     POKE 793,203
  29.  
  30. (6) TO DISABLE SAVE -type:
  31.     POKE 818,245:POKE 818,32
  32.  
  33. (7) TO ENABLE SAVE -type:
  34.     POKE 818,245:POKE 818,237
  35.  
  36. (8) TO DISABLE LOAD -type:
  37.     POKE 816,0
  38.  
  39. (9) TO ENABLE LOAD -type:
  40.     POKE 818,108
  41.  
  42. (10) TO DISABLE THE KEYBOARD -type:
  43.      POKE 649,0
  44.  
  45. (11) TO ENABLE THE KEYBOARD -type:
  46.      POKE 649,10
  47.  
  48. (12) TO RESTORE KEYBOARD -type:
  49.      POKE 649,10:POKE808,237
  50.  
  51. (13) FOR UPPERCASE GRAPHICS -type:
  52.      POKE 53272,21
  53.  
  54. (14) FOR LOWERCASE TO UPPERCASE
  55.      GRAPHICS -type: POKE 53272,23
  56.  
  57. (15) TO DISABLE LIST -type:
  58.      POKE 775,75
  59.  
  60. (16) TO DISABLE REPEAT -type:
  61.      POKE 650,0
  62.  
  63. (17) TO ENABLE REPEAT -type:
  64.      POKE 650,128
  65.  
  66. (18) FREEZE COMPUTER -type:
  67.      SYS64739 -shut on and off to
  68.      restore computer.
  69.  
  70. NOTE: You can use any of the above
  71.  
  72. statements in your programs or as it
  73.  
  74. is. Also, some of these statements
  75.  
  76. may make it necessary for you to turn
  77.  
  78. your computer off then on again in
  79.  
  80. order to restore things to normal.
  81.  
  82.  
  83. I find Loadstar to be the best disk
  84.  
  85. based magazine available.  Loadstar
  86.  
  87. should try to put a fastloader built
  88.  
  89. into the Loadstar itself.  Also, can
  90.  
  91. you or have you published a program
  92.  
  93. that will print out directories in 2
  94.  
  95. columns--I need one.
  96.  
  97.  
  98. > Thanks for the neat info, Cutler.
  99. > We are heavily researching a fast
  100. > loader for future incorporation.
  101. > No idea on the 2-column directory
  102. > printer, though.  We'll keep
  103. > looking.
  104.  
  105. --------------------------------------
  106.  
  107. From:  O'Neill
  108.  
  109.    **** Tip for C-128 Owners ****
  110.  
  111.  
  112.    I have read and heard of some
  113.  
  114. users having problems running
  115.  
  116. commercial programs in 64 mode. I
  117.  
  118. had the problem once and my discovery
  119.  
  120. corrected it and have never had
  121.  
  122. trouble with it since.
  123.  
  124.  
  125.    What with the amount of copy
  126.  
  127. protection used on software these
  128.  
  129. days, the 1571 definitely has a
  130.  
  131. problem with it.  But, ONLY if it's
  132.  
  133. powered up in 128 mode first.  If
  134.  
  135. you plan on running C-64 software
  136.  
  137. (with copy protection), make sure
  138.  
  139. you power up in 64 mode.  This will
  140.  
  141. insure that your 1571 will at the
  142.  
  143. same time be in 1541 mode.  The main
  144.  
  145. trouble with 64 software on the 128
  146.  
  147. occurs when the 1571 is trying to read
  148.  
  149. a single-sided disk and at the same
  150.  
  151. time has to deal with all that copy
  152.  
  153. protection (in a human it would be
  154.  
  155. called HEARTBURN).
  156.  
  157.  
  158.    So, to alleviate what some people
  159.  
  160. are calling a bug in the 128, just
  161.  
  162. make sure your 1571 is first in 1541
  163.  
  164. mode and the trouble will never
  165.  
  166. appear.
  167.  
  168.                 Keep on 128ing!!!!!
  169.  
  170. -----------< end of text >------------
  171.